home *** CD-ROM | disk | FTP | other *** search
Text File | 1992-07-15 | 1.7 KB | 75 lines | [TEXT/MPS ] |
- // Copyright (c) 1991 Apple Computer. All rights reserved.
-
- #ifndef __TYPES.R__
- #include "Types.r"
- #endif
-
- #ifndef __MacAppTypes__
- #include "MacAppTypes.r"
- #endif
-
- #ifndef __ViewTypes__
- #include "ViewTypes.r"
- #endif
-
- #if qDebug
- include "Debug.rsrc";
- #endif
-
- include "MacApp.rsrc";
- include "Dialogs" 'CODE';
-
- include "views.rsrc"; // view 2000
-
- include "Defaults.rsrc" 'SIZE' (-1); // default = 534, 246; 384, 96
- include "Defaults.rsrc" 'ALRT' (phAboutApp); // default about window
- include "Defaults.rsrc" 'DITL' (phAboutApp); // default about contents
- include "Defaults.rsrc" 'STR#' (kDefaultCredits); // default credits
-
-
- //======================================================================================
- include "Defaults.rsrc" 'cmnu' (mApple); // default Apple menus
- include "Defaults.rsrc" 'cmnu' (mEdit); // default Edit menus
-
- resource 'cmnu' (2) {
- 2,
- textMenuProc,
- 0x7FFFFBBB,
- enabled,
- "File",
- {
- "Close", noIcon, noKey, noMark, plain, cClose;
- "-", noIcon, noKey, noMark, plain, nocommand;
- "Quit", noIcon, "Q", noMark, plain, cQuit
- }
- };
-
-
-
- resource 'MBAR' (kMBarDisplayed,
- #if qNames
- "Dialogs",
- #endif
- purgeable) {
- {mApple; 2; mEdit; }
- };
-
-
- // === for Debug Transcript window ======================================================
- #if qDebug
- resource 'dbug' (kDebugParamsID,
- #if qNames
- "Debug",
- #endif
- purgeable) {
- normal, // Bounding rect for debug window
- 4, // Debug window font rsrc ID (monaco)
- normal, // Debug window font size
- 120, // Number of lines
- 90, // Width of lines in characters
- openInitially, // show window at startup
- "Dialogs Debug Transcript" // Window title
- };
- #endif
-
-